home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -readerstuff- / matt_briggs / eac / developers / tutorials / tutorial_01.eac next >
Text File  |  1999-04-21  |  498b  |  14 lines

  1. .-------------------------------------------------------------------------.
  2. |  When an adventure script is loaded, EAC will look for a page called    |
  3. |  ` START '; To declare a page use the command PAGE: , followed by the   |
  4. |  page name. i.e. PAGE:fred , PAGE:three etc. To end a page use the      |
  5. |  command ENDPAGE:                                                       |
  6. `-------------------------------------------------------------------------'
  7.  
  8. PAGE:START
  9.  
  10. Hello world!
  11.  
  12. ENDPAGE:
  13.  
  14.